In this post we will go over creating a simple webserver in C, step-by-step. First, we'll start with some background into webservers, and subsequently add more ...
This is a very simple HTTP server for Unix, using fork(). It's very easy to use. How to use See main.c , an interesting example. To log stuff, use fprintf( ...
The classic C library for TCP/IP programming is called Sockets (or BSD Sockets). Usually the Sockets API, as it's called, is provided by the operating system ...